home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util1 / syslog.lha / SysLog_V1.00 / Developer / examples / Spy / Makefile next >
Makefile  |  1995-11-13  |  381b  |  31 lines

  1. #
  2. # This file is public domain.
  3. #
  4. # Author: Petri Nordlund <petrin@megabaud.fi>
  5. #
  6. # $Id: MF.compile 1.1 1995/10/30 23:22:40 petrin Exp petrin $
  7. #
  8.  
  9. CFLAGS = -O
  10.  
  11.  
  12. SHELL = USR:BIN/sh
  13.  
  14. # Source files
  15. SRCS   = Spy.c
  16.  
  17. # Object files
  18. OBJS   = $(SRCS:.c=.o)
  19.  
  20.  
  21. all : Spy
  22.  
  23. Spy : Spy.o
  24.     gcc $(CFLAGS) -o Spy $^ -lamiga -lauto
  25.  
  26. Spy.o : Spy.c
  27.     gcc $(CFLAGS) -c Spy.c
  28.  
  29. clean:
  30.     -delete Spy Spy.o
  31.